home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / util / libs / graphics3d.lha / develop / C / graphics3Dbase.h < prev   
Encoding:
C/C++ Source or Header  |  1999-01-22  |  812 b   |  32 lines

  1. /*
  2. **      $VER: graphics3Dbase.h 10.01 (01.11.97)
  3. **
  4. **      definition of Graphics3DBase
  5. **
  6. **      (C) Copyright 1996 Andreas R. Kleinert
  7. **      (C) Copyright 1997 Patrizio Biancalani
  8. **      All Rights Reserved.
  9. */
  10.  
  11. #ifndef GRAPHICS3D_GRAPHICS3DBASE_H
  12. #define GRAPHICS3D_GRAPHICS3DBASE_H
  13.  
  14. #ifndef  EXEC_LIBRARIES
  15. #include <exec/libraries.h>
  16. #endif /* EXEC_LIBRARIES_H */
  17.  
  18. struct Graphics3DBase
  19. {
  20.  struct Library         exb_LibNode;
  21.  APTR                   exb_SegList;
  22.  struct ExecBase       *exb_SysBase;
  23.  struct IntuitionBase  *exb_IntuitionBase;
  24.  struct GfxBase        *exb_GfxBase;
  25.  struct LayersBase     *exb_LayersBase;
  26.  struct MathIEEEBase   *exb_MathIeeeDoubBasBase;
  27.  struct MathIEEEBase   *exb_MathIeeeSingBasBase;
  28.  struct DOSBase        *exb_DOSBase;
  29. };
  30.  
  31. #endif /* GRAPHICS3D_GRAPHICS3DBASE_H */
  32.